home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal-1.8 / protos.m4 < prev    next >
Encoding:
M4 Source File  |  2005-10-16  |  1.3 KB  |  41 lines

  1. ## ------------------------------- ##                    -*- Autoconf -*-
  2. ## Check for function prototypes.  ##
  3. ## From Franc,ois Pinard           ##
  4. ## ------------------------------- ##
  5.  
  6. # Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003
  7. # Free Software Foundation, Inc.
  8.  
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2, or (at your option)
  12. # any later version.
  13.  
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU General Public License for more details.
  18.  
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  22. # 02111-1307, USA.
  23.  
  24. # serial 3
  25.  
  26. AC_DEFUN([AM_C_PROTOTYPES],
  27. [AC_REQUIRE([AC_C_PROTOTYPES])
  28. if test "$ac_cv_prog_cc_stdc" != no; then
  29.   U= ANSI2KNR=
  30. else
  31.   U=_ ANSI2KNR=./ansi2knr
  32. fi
  33. # Ensure some checks needed by ansi2knr itself.
  34. AC_REQUIRE([AC_HEADER_STDC])
  35. AC_CHECK_HEADERS(string.h)
  36. AC_SUBST(U)dnl
  37. AC_SUBST(ANSI2KNR)dnl
  38. ])
  39.  
  40. AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES])
  41.